home *** CD-ROM | disk | FTP | other *** search
/ Network PC / Network PC.iso / amiga utilities / communication / internet / amitcp3.0b / src.lha / src / amitcp / sys / kernel.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-09-08  |  1.1 KB  |  41 lines

  1. /*
  2.  * $Id: kernel.h,v 1.7 1993/06/04 11:16:15 jraja Exp $
  3.  *
  4.  * Copyright (c) 1993 AmiTCP/IP Group, <amitcp-group@hut.fi>
  5.  *                    Helsinki University of Technology, Finland.
  6.  *                    All rights reserved.
  7.  *
  8.  * HISTORY
  9.  * $Log: kernel.h,v $
  10.  * Revision 1.7  1993/06/04  11:16:15  jraja
  11.  * Fixes for first public release.
  12.  *
  13.  * Revision 1.6  1993/05/17  01:02:04  ppessi
  14.  * Changed RCS version
  15.  *
  16.  * Revision 1.5  1993/03/03  19:43:23  jraja
  17.  * Major Cleanup. Changed hz & tick to preprocessor defines.
  18.  *
  19.  * Revision 1.4  93/02/04  18:14:21  18:14:21  jraja (Jarno Tapio Rajahalme)
  20.  * fixed bug in #if -statement.
  21.  * 
  22.  * Revision 1.3  92/12/22  00:11:52  00:11:52  jraja (Jarno Tapio Rajahalme)
  23.  * made 'tick' visible.
  24.  * 
  25.  * Revision 1.2  92/11/20  15:56:54  15:56:54  jraja (Jarno Tapio Rajahalme)
  26.  * Added #ifndef AMITCP's to make this compile.
  27.  * 
  28.  * Revision 1.1  92/11/20  15:47:56  15:47:56  jraja (Jarno Tapio Rajahalme)
  29.  * Initial revision
  30.  * 
  31.  *
  32.  */
  33.  
  34. #ifndef SYS_KERNEL_H
  35. #define SYS_KERNEL_H
  36.  
  37. #define hz   (50)        /* computational clock frequency */
  38. #define tick (1000000/hz)    /* microseconds / hz */
  39.  
  40. #endif /* !SYS_KERNEL_H */
  41.